(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <proto/dos.h>
STRPTR PathPart()
SYNOPSIS
STRPTR path

LOCATION
In DOSBase at offset 146
FUNCTION
Returns a pointer to the character after the last directory in path (see examples).

INPUTS
path
Search this path.
RESULT
A pointer to a character in path.

NOTES
EXAMPLE
PathPart("xxx:yyy/zzz/qqq") would return a pointer to the last '/'.
PathPart("xxx:yyy") would return a pointer to the first 'y').

BUGS
SEE ALSO
INTERNALS
HISTORY
04.03.1997 digulla
Polish
27.01.1997 ldp
Polish
09.12.1996 aros
Added empty templates for all missing functions

Moved #include's into first column

21.11.1996 aros
Created macros AROS_SLIB_ENTRY() for assembler files, too, to solve naming problems.

The #includes in the header *must* begin in the first column. Otherwise makedepend will ignore them (GCC works, though).

Removed a couple of Logs

24.10.1996 aros
Use the official AROS macros over the __AROS versions.
21.10.1996 aros
A new function